home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / winsr173.zip / SELECT.H < prev    next >
Text File  |  1992-06-03  |  842b  |  19 lines

  1. /* These defines determine the meaning of the fFlags variable.  The low byte
  2.  * is used for the various types of "boxes" to draw.  The high byte is
  3.  * available for special commands.
  4.  */
  5.  
  6. #define SL_BOX    1             /* Draw a solid border around the rectangle  */
  7. #define SL_BLOCK  2             /* Draw a solid rectangle                    */
  8. #define SL_ZOOM   3
  9.  
  10. #define SL_EXTEND 256           /* Extend the current pattern                */
  11.  
  12. #define SL_TYPE    0x00FF       /* Mask out everything but the type flags    */
  13. #define SL_SPECIAL 0xFF00       /* Mask out everything but the special flags */
  14.  
  15. void FAR PASCAL StartSelection(HWND, POINT, LPRECT, int);
  16. void FAR PASCAL UpdateSelection(HWND, POINT, LPRECT, int);
  17. void FAR PASCAL EndSelection(POINT, LPRECT);
  18. void FAR PASCAL ClearSelection(HWND, LPRECT, int);
  19.